home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / nodee1.arc / SOURCE.ARC / NODDLGS.H < prev    next >
C/C++ Source or Header  |  1991-09-01  |  672b  |  50 lines

  1. /*
  2.  
  3.     NODDLGS.H
  4.  
  5.  
  6.             AboutBox - this dialog places the common box on the
  7.             screen
  8. */
  9.  
  10.     #ifndef __NODDLGS_H
  11.     #define __NODDLGS_H
  12.  
  13.     #ifndef __WINDOWS_H
  14.         #include <Windows.h>
  15.     #endif
  16.  
  17.     #ifndef __CLASSWIN_H
  18.         #include "ClassWin.h"
  19.     #endif
  20.  
  21.  
  22. /*---------------------------------------------------------------------
  23.  
  24.     class AboutBox
  25.  
  26.             draws and manages the About dialog.
  27. */
  28.  
  29.     class AboutBox : public ModalDialog
  30.     {
  31.     public:
  32.  
  33.         AboutBox( HWND );
  34.  
  35.     private:
  36.  
  37.         virtual LPSTR getDialogName();
  38.         virtual BOOL dispatch( HWND, WORD, WORD, LONG );
  39.  
  40.     };
  41.  
  42.  
  43.     inline AboutBox::AboutBox(HWND hOwner) : ModalDialog(hOwner)
  44.     {
  45.     }
  46.  
  47.  
  48.     #endif
  49.  
  50.